home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 11: TSX-11 / Linux Cubed Series 11 - TSX-11 Vol 1.iso / usr.bin / most-4.2 < prev    next >
Text File  |  1996-11-30  |  2KB  |  54 lines

  1. Most is a pager with all the important features of more/less plus
  2. the following:
  3.  
  4.    1.  Multiple windows
  5.    2.  Window locking (scroll more than one window simultaneously)
  6.    3.  Horizontal scrolling on arbitrarily long lines (can wrap too)
  7.    4.  The cursor moves to the match of a search.  It does not simply move
  8.         the line to the top of the screen.
  9.    5.  PgUp/PgDn and arrow keys work.
  10.    6.  Can scroll back on a pipe (less also does this, more does not)
  11.    7.  View Binary files in HEX mode.
  12.    8.  If you start up most as in `most *', you can do `:n' and use Arrow
  13.         keys to select among files in the list.
  14.    9.  View a file using selective display like emacs.  That is, suppose you
  15.         have a series C functions:
  16.  
  17.        int some_function(int x) {
  18.          if (x > 0) {
  19.            /* what ever */
  20.          }
  21.        }
  22.  
  23.        main () {
  24.          /* more whatever */
  25.        }
  26.  
  27.        then MOST can ``fold'' the code hiding lines that are indented beyond
  28.        a certain user specified column as in:
  29.  
  30.        int some_function(int x) {...
  31.        }
  32.  
  33.        main () {...
  34.        }
  35.  
  36.        or
  37.  
  38.        int some_function(int x) {
  39.          if (x > 0) {...
  40.          }
  41.        }
  42.  
  43.        main () {...
  44.        }
  45.        
  46.    9.  Executable is as small as less (actually smaller on my machine, both
  47.        less and most are stripped).
  48.  
  49. MOST has been used quite a bit on VMS systems and is the paging program used
  50. in CSwing as well as the VMS Gopher client.  It was developed under Unix.
  51.  
  52. --John
  53. davis@amy.tch.harvard.edu
  54.